-
Notifications
You must be signed in to change notification settings - Fork 4.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
firstTry1 #5851
base: master
Are you sure you want to change the base?
firstTry1 #5851
Conversation
WhiteP8wder8
commented
Dec 21, 2024
- DEMO LINK
- TEST REPORT LINK
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great job on your submission! 🎉 Your code meets the majority of the task requirements and is well-structured. Here are a few things to keep in mind:
- Duplicate Font Links: The
index.html
file contains duplicate links to the Roboto font. Removing these redundancies will optimize resource loading and improve performance. - CSS Structure: Your CSS is well-organized, using variables effectively, which is excellent for maintainability.
- Semantic HTML: You've used semantic tags correctly, which enhances the accessibility and readability of your code.
- Flexbox Usage: The use of flexbox for layout is well-implemented, ensuring the header content is vertically centered and spans the full page width.
While there are minor issues like the duplicate font links, these don't detract significantly from the overall quality of your work. Addressing these will help you further optimize your code. Keep up the great work, and continue learning from each task! 🚀
✨ Please rate this review in the Platform's notification center. I will be grateful for your feedback! ✨
<link | ||
rel="preconnect" | ||
href="https://fonts.googleapis.com" | ||
/> | ||
<link | ||
rel="preconnect" | ||
href="https://fonts.gstatic.com" | ||
crossorigin="anonymous" | ||
/> | ||
<link | ||
href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap" | ||
rel="stylesheet" | ||
/> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The link tags for preconnecting to Google Fonts and loading the Roboto font are duplicated. Consider removing the redundant set of link tags to avoid unnecessary HTTP requests and improve page load performance.